<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link
      rel="icon"
      type="image/x-icon"
      href="{domain}/static/dhl-favicon.png"
    />
    <title>DHL | Error Occurred</title>
    <style type="text/css">
      body {
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        margin: 0;
      }
      .logo-header {
        background-color: #ffcc00;
        width: 100%;
        height: 50px;
      }
      .dhl-logo {
        height: 50px;
        width: auto;
        float: left;
      }
      .dhl-name {
        text-align: center;
        float: left;
        margin-top: 20px;
        margin-left: 5px;
        color: red;
      }
      .top-menu {
        text-align: center;
        margin-top: 20px;
        vertical-align: middle;
      }
      .center-wrapper {
        margin-left: 25%;
        margin-right: 25%;
      }
      .message-wrapper {
        background-image: url('{domain}/static/dhl-background.jpg');
        height: 500px;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
      }
      .message-body {
        width: 300px;
        padding: 20px;
        float: right;
        margin-right: 20%;
        background-color: #e9e9e9;
        display: inline-block;
        margin-top: 40px;
        padding-top: 70px;
        height: 200px;
        font-size: 18px;
        text-align: center;
      }
      .content-1-image {
        max-width: 100%;
        height: auto;
        max-height: 100%;
        display: flex;
        margin: auto;
      }
      .list-wrapper {
        list-style: none;
        text-align: left;
        line-height: 30px;
        display: block;
        padding: 20px;
      }
      li {
        color: #444;
        font-weight: 400;
        outline: 0;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
      }
      .footer {
        background-color: white;
        text-align: center;
        font-size: 16px;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        color: #949494;
        font-weight: 600;
        border-top: 1px solid black;
        border-bottom: 1px solid black;
      }
      .footer-content {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        max-width: 100%;
      }
      .copyright-text {
        text-align: center;
        padding-top: 5px;
      }
      .DHL-group-name {
        color: black;
        font-weight: 300;
      }
      @media only screen and (max-width: 600px) {
        .message-wrapper {
          padding-top: 45px;
          height: 450px;
        }
        .message-body {
          display: block;
          margin-left: auto;
          margin-right: auto;
          float: none;
          margin-top: 0px;
        }
        .center-wrapper {
          margin-left: 10px;
        }
        .footer-content {
          display: inline-block;
        }
        .list-wrapper {
          margin: 5px;
          padding: 5px;
        }
      }
    </style>
  </head>
  <body>
    <div class="logo-header">
      <div class="center-wrapper">
        <img src="{domain}/static/dhl-logo.jpeg" class="dhl-logo" />
      </div>
    </div>
    <div class="message-wrapper">
      <div class="message-body">
        Szczegóły nie zostały jeszcze zaktualizowane.
        <br />
        <br />
        Sprawdź ponownie później
      </div>
    </div>

    <div>
      <img src="{domain}/static/dhl-content.png" class="content-1-image" />
    </div>
    <div class="footer">
      <div class="footer-content">
        <ul class="list-wrapper">
          Skontaktuj się z nami
          <li>Pomoc</li>
          <li>FAQs</li>
          <li>Kontakt</li>
          <li>Znajdź punkt DHL</li>
        </ul>

        <ul class="list-wrapper">
          Informacje prawne
          <li>Warunki użytkowania</li>
          <li>Polityka prywatności</li>
        </ul>

        <ul class="list-wrapper">
          Alerty
          <li>Oszustwa</li>
          <li>Ważne informacje</li>
        </ul>

        <ul class="list-wrapper">
          <span class="DHL-group-name">Deutsche Post DHL Group</span>
          <li>O nas</li>
          <li>Informacje prasowe</li>
          <li>Kariera</li>
          <li>Informacja prasowa</li>
        </ul>
      </div>
    </div>
    <div class="copyright-text">
      DHL Global &#169; {current_year} | Wszystkie prawa zastrzeżone
  </body>
</html>